home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / V15N04.ZIP / WARPCA.ZIP / WCABSRC.ZIP / FILEPROP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-18  |  621 b   |  29 lines

  1. // DFilePropertiesDlg -- Class definition
  2. #if !defined(_FILEPROP_H)
  3.     #define _FILEPROP_H
  4. #include "os2api.h"
  5. #include "resource.h"
  6. #include "fileasoc.h"
  7. #include "filentry.h"
  8.  
  9. class DFilePropertiesDlg : public TDialog
  10. {
  11. public:
  12.     LPSTR lpszCurrentDir;
  13.  
  14.     DFilePropertiesDlg(TWindow *parent, LPSTR lpszMyDir) : TDialog(parent, IDD_FILE_PROP_DLG, 0) {
  15.             lpszCurrentDir = lpszMyDir;
  16.         }
  17.  
  18.     void CmOk();
  19.  
  20.     void SetupWindow();
  21.  
  22.     DECLARE_RESPONSE_TABLE (DFilePropertiesDlg);
  23. };
  24.  
  25. // Global template-based array of file selections to change
  26. extern TISArrayAsVector <FILEENTRY> SelectedFileList;
  27.  
  28. #endif
  29.